home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Graphics / vcdimager / vcdimager_077.readme < prev    next >
Text File  |  2001-07-02  |  4KB  |  91 lines

  1. Short:      VCDImager 0.7.7 Beta (WarpUP and 68k Supported)
  2. Author:   SteffenH@hyperion-software.de (Amiga Port), hvr@gnu.org (Original Linux Version)
  3. Uploader: SteffenH@hyperion-software.de
  4. Type:       gfx/conv
  5.  
  6. This archive includes VCDImager (a tool to convert MPEG Stream Files to Video CDs,
  7. different sorts of Video CD Formats are supported, see enclosed original documentation
  8. vcdimager.info for more information) and VCDRip (convert Video CDs to MPEG Stream Files).
  9.  
  10. According to the author of VCDImage this 0.7.7 Beta version is
  11. "nearly stable and usually to be prefered to the 0.6.2 Stable version".
  12. To go sure I provide both in seperate archives.
  13.  
  14. Note: It seems for 0.7.7 Beta the Contextswitch problem is much
  15. less serious, so for that one the PPC version got noticably faster I think.
  16.  
  17. VCDImager generates .bin/.cue files. If you edit the .cue files a bit (some minor changes)
  18. you can write the Video CDs with BurnIT! for example. I tested the Video CD with
  19. AMP 2 and it works fine.
  20.  
  21. Executables for WarpUP and 68k are included. Be sure to raise your HD Buffers with
  22. addbuffers.
  23.  
  24. Go to
  25.  
  26. http://www.gnu.org/software/vcdimager/
  27.  
  28. for more information on VCDImager.
  29.  
  30. Steffen Haeuser
  31.  
  32. User notes:
  33.  
  34. Just set a big enough stack, and go sure you assign etc: to somewhere (does not matter
  35. where...). Use it like:
  36.  
  37. vcdimager -t vcd11 filename.mpg
  38.  
  39. Go sure the used MPG files are MPEG Streams (Video and Audio)
  40.  
  41. Notes for people wanting to compile the stuff:
  42.  
  43. Note: You need to depack sources.lha to be able to compile. I did the compile
  44. with gcc-WarpUP. Adapting it to a different compiler might be quite some work
  45. (I did not use StormC, as I was too lazy to convert the makefile into a project file).
  46.  
  47. As AmigaOS has no fully working configure, I made up the makefiles myselves, for WarpUP
  48. and 68k. The WarpUP version can probably be improved a lot in speed by introducing
  49. buffering to reduce the context switches. The 68k version requires ixemul being installed
  50. (sorry).
  51.  
  52. differ.txt includes the changes to the original 0.6.2 version for the Amiga version.
  53. If you apply both differ.txt and differ2.txt to the 0.7.7 Beta Source of vcdimager,
  54. you can also port 0.7.7 Beta to the Amiga.
  55.  
  56. You get the full Linux Source Code of vcdimager at http://www.gnu.org/software/vcdimager/
  57. To get my current Amiga Source of the thing you just have to apply the differ.txt on
  58. the original source, and copy the makefiles over.
  59.  
  60. VCDImager falls under the GPL.
  61.  
  62. Note that my makefiles are a bit crappy. They will bring an error occasionally. In this
  63. case just enter the directory where the error came and make the sub-makefile directly.
  64. Also they won't link. To link you have to do (from frontends/cli, after copying the
  65. linker libs to appropriate places so they will be found):
  66.  
  67. PPC:
  68.  
  69. ppc-amigaos-gcc -warpup -V2.95.2 -warpup -mcpu=604e vcdimager.o snprintf.o vsnprintf.o -lpopt -lvcd -lppcamiga -ovcdimager.exe
  70. elf2exe2 vcdimager.exe vcdimager
  71.  
  72. ppc-amigaos-gcc -warpup -V2.95.2 -warpup -mcpu=604e vcdrip.o snprintf.o vsnprintf.o -lpopt -lvcd -lppcamiga -ovcdrip.exe
  73. elf2exe2 vcdrip.exe vcdrip
  74.  
  75. 68k:
  76.  
  77. gcc -V2.95 -m68060 vcdimager.o snprintf.o vsnprintf.o -lpopt -lvcd -lamiga -lm -ovcdimager68k
  78.  
  79. gcc -V2.95 -m68060 vcdrip.o snprintf.o vsnprintf.o -lpopt -lvcd -lamiga -lm -ovcdrip68k
  80. elf2exe2 vcdrip.exe vcdrip
  81.  
  82. For 0.7.7 Beta you'd additionally include the object file rint.o and you would
  83. also link vcddebug additionally.
  84.  
  85. Ah, to be able to compile vcdrip.c you also have to start this manually, another bug in
  86. the makefile. Just compile it with the same options like the makefile does for
  87. vcdimager.c...
  88.  
  89. Steffen Haeuser
  90. SteffenH@hyperion-software.de
  91.